home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_BrushStrokes_Small_th < prev    next >
Encoding:
Text File  |  2003-04-22  |  724 b   |  30 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Small thin oil BrushStrokes preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_BrushStrokes():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Opacity': 50,
  19.         'Width': 4,
  20.         'Length': 10,
  21.         'Angle': 102,
  22.         'Color': (0, 0, 0),
  23.         'Density': 25,
  24.         'Bristles': 256,
  25.         'Softness': 20,
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do(Environment, 'BrushStrokes', Preset_BrushStrokes())
  30.